home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / cbibcode.arc / DELAY.C < prev    next >
Encoding:
C/C++ Source or Header  |  1991-08-05  |  195 b   |  12 lines

  1. #include <dos.h>
  2. main()
  3. {
  4.     unsigned duration;
  5.     printf("Enter duration of 440-Hz tone "
  6.         "in milliseconds): ");
  7.     scanf(" %u", &duration);
  8.     sound(440);
  9.     delay(duration);
  10.     nosound();
  11. }
  12.